|
In computer software, is a program in Unix-like operating systems that prints the user or group identifier of the account by which the program is executed; an example of the command as executed by user : alice@darkstar:~$ id uid=1016(alice) gid=100(users) groups=100(users) The root account has a UID of 0: root@darkstar:~# id uid=0(root) gid=0(root) groups=0(root) The utility has been obsoleted by the utility and displays a user's ID as a name: alice@darkstar:~$ whoami alice alice@darkstar:~$ id -un # Where `-u` refers to `--user` and `-n` refers to `--name` alice == See also == * List of Unix programs * UID * GID * * 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「Id (Unix)」の詳細全文を読む スポンサード リンク
|